home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 460_01 / YACL0160.ZIP / uidemo / textedit / main.cxx < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-29  |  328 b   |  20 lines

  1.  
  2. // A demonstration of mouse tracking.
  3.  
  4.  
  5. #include "ui/applic.h"
  6. #include "appwin.h"
  7.  
  8. // ======================== Main program ===========================
  9.  
  10.  
  11. int UI_Application::Main (int /* argc */, char* []) 
  12. {
  13.     MakeTopWindow (new AppWindow);
  14.     MainWindow()->Title() = "YACL Text Editor Demo";
  15.     Run();
  16.     return 0;
  17. }
  18.  
  19.  
  20.